net/http.http2ClientConn.t (field)

35 uses

	net/http (current package)
		h2_bundle.go#L7779: 	t             *http2Transport
		h2_bundle.go#L7958: 		cs.cc.t.markNewGoroutine()
		h2_bundle.go#L8246: 		t:                           t,
		h2_bundle.go#L8342: 	ctx, cancel := cc.t.contextWithTimeout(context.Background(), pingTimeout)
		h2_bundle.go#L8492: 	if cc.t.StrictMaxConcurrentStreams {
		h2_bundle.go#L8543: 	return cc.idleTimeout != 0 && !cc.lastIdle.IsZero() && cc.t.timeSince(cc.lastIdle.Round(0)) > cc.idleTimeout
		h2_bundle.go#L8608: 		cc.t.markNewGoroutine()
		h2_bundle.go#L8687: 	if f := cc.t.CountError; f != nil {
		h2_bundle.go#L8715: 	if cc.t.t1 != nil {
		h2_bundle.go#L8716: 		return cc.t.t1.ResponseHeaderTimeout
		h2_bundle.go#L8787: 	if !cc.t.disableCompression() &&
		h2_bundle.go#L8900: 	cs.cc.t.markNewGoroutine()
		h2_bundle.go#L8975: 	continueTimeout := cc.t.expectContinueTimeout()
		h2_bundle.go#L9035: 		timer := cc.t.newTimer(d)
		h2_bundle.go#L9128: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		h2_bundle.go#L9217: 		cc.lastActive = cc.t.now()
		h2_bundle.go#L9780: 	cc.lastActive = cc.t.now()
		h2_bundle.go#L9783: 		cc.lastIdle = cc.t.now()
		h2_bundle.go#L9789: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		h2_bundle.go#L9809: 	cc.t.markNewGoroutine()
		h2_bundle.go#L9873: 	idleTime := cc.t.now().Sub(cc.lastActive)
		h2_bundle.go#L9875: 		cc.idleTimer = cc.t.afterFunc(unusedWaitTime-idleTime, func() {
		h2_bundle.go#L9876: 			cc.t.connPool().MarkDead(cc)
		h2_bundle.go#L9880: 		cc.t.connPool().MarkDead(cc)
		h2_bundle.go#L9900: 	f := cc.t.CountError
		h2_bundle.go#L9930: 		t = cc.t.afterFunc(readIdleTimeout, cc.healthCheck)
		h2_bundle.go#L10129: 			limit := int64(cs.cc.t.maxHeaderListSize())
		h2_bundle.go#L10130: 			if t1 := cs.cc.t.t1; t1 != nil && t1.MaxResponseHeaderBytes > limit {
		h2_bundle.go#L10495: 	cc.t.connPool().MarkDead(cc)
		h2_bundle.go#L10499: 		if fn := cc.t.CountError; fn != nil {
		h2_bundle.go#L10649: 	if fn := cs.cc.t.CountError; fn != nil {
		h2_bundle.go#L10679: 		cc.t.markNewGoroutine()
		h2_bundle.go#L10766: 	cc.t.logf(format, args...)
		h2_bundle.go#L10770: 	cc.t.vlogf(format, args...)
		h2_bundle.go#L10912: 		ci.IdleTime = cc.t.timeSince(cc.lastActive)